home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 July: Mac OS SDK / Dev.CD Jul 97 SDK1.toast / Development Kits (Disc 1) / QuickDraw 3D / Samples / SampleCode / Unsupported Libraries / PictRead.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-05-21  |  1020 b   |  48 lines  |  [TEXT/MPS ]

  1. #pragma once
  2. /******************************************************************************
  3.  **                                                                             **
  4.  **     Module:        PictRead.h                                                 **
  5.  **                                                                          **
  6.  **                                                                          **
  7.  **                                                                          **
  8.  **     Purpose:     protos for PICT to TEX routines                             **
  9.  **                                                                          **
  10.  **                                                                          **
  11.  **                                                                          **
  12.  **     Copyright (C) 1992-1995 Apple Computer, Inc.  All rights reserved.     **
  13.  **                                                                          **
  14.  **                                                                          **
  15.  *****************************************************************************/
  16. #ifndef PictRead_h
  17. #define PictRead_h
  18.  
  19. #include <stdlib.h>
  20.  
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif    /* __cplusplus */
  24.  
  25.  
  26. PicHandle OpenPICTFile( 
  27.     short     vRefNum, 
  28.     Str255     fName);
  29.  
  30. PicHandle GetPICTFile( 
  31.     void);
  32.     
  33. short LoadMapPICT(
  34.     PicHandle            pict,
  35.     unsigned long         mapId,
  36.     unsigned long         mapSizeX, 
  37.     unsigned long         mapSizeY, 
  38.     TQ3StoragePixmap     *bMap);
  39.     
  40.     
  41. #ifdef __cplusplus
  42. }
  43. #endif    /* __cplusplus */
  44.  
  45.     
  46. #endif  /*  PictRead_h  */
  47.  
  48.